home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 30
/
Aminet 30 (1999)(Schatztruhe)[!][Apr 1999].iso
/
Aminet
/
dev
/
cross
/
GBDK-2.0.lha
/
GBDK
/
lib
/
strlen.c
< prev
next >
Wrap
C/C++ Source or Header
|
1998-10-01
|
139b
|
14 lines
#include <string.h>
/* Return length of string */
BYTE strlen(const char *s)
{
UBYTE i;
i = 0;
while(*s++)
i++;
return i;
}